home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HPAVC
/
HPAVC CD-ROM.iso
/
PPC1B3AA.ZIP
/
TIMER.PPS
< prev
next >
Wrap
Text File
|
1996-08-29
|
633b
|
21 lines
;----------------------------------------------------------------------------
; Copyright(C) 1996, The AEGiS Corporation
;----------------------------------------------------------------------------
;
; FUNCTION Timer()
;
; Returns the number of clock ticks since midnight
; Very usefull for accurate timing routines (for games for example)
;
;----------------------------------------------------------------------------
#lib
#nouser
Declare Function Timer() DWord
;----------------------------------------------------------------------------
Function Timer() DWord
Timer = PeekDW(MKADDR(0040h,006Ch))
Endfunc